home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1995 May / cd Ware (Juegos) Epimundo.iso / DOS / PRGMMING / CNVLIBD.ZIP / COUNT.BAT < prev    next >
Encoding:
DOS Batch File  |  1994-08-06  |  204 b   |  11 lines

  1. @echo off
  2. REM  COUNT.BAT - Count from 1 to specified number
  3. REM  EXAMPLE: COUNT 100
  4.  
  5. SET COUNT=0
  6. :TOP_OF_LOOP
  7.    CEnvi COUNT = COUNT + 1
  8.    ECHO %COUNT%
  9.    IF NOT %COUNT%==%1 GOTO TOP_OF_LOOP
  10.  
  11.